From: Luis R. Rodriguez Date: Fri, 13 Jun 2014 01:18:46 +0000 (-0700) Subject: autoconf: xen: force a refresh with autoconf X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~4728 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=b1a40efe4a9baa4f740f8c4cf395e0c5d4992830;p=xen.git autoconf: xen: force a refresh with autoconf With some new functionality introduced we can't keep around the old cache, but more specifically at times autogen.sh can produce inconsistent results without considering all files obsolete. The cost of considering all files obsolete is small so just force it. Signed-off-by: Luis R. Rodriguez Cc: Ian Campbell Cc: Ian Jackson Cc: Jan Beulich Cc: Keir Fraser Cc: Tim Deegan Acked-by: Roger Pau Monné Acked-by: Ian Campbell --- diff --git a/autogen.sh b/autogen.sh index b5c96882d9..2be836008a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,12 +1,12 @@ #!/bin/sh -e -autoconf +autoconf -f ( cd tools - autoconf + autoconf -f autoheader ) ( cd stubdom - autoconf + autoconf -f ) ( cd docs - autoconf + autoconf -f )